/* Sign Up */

/* background-color: rgb(247, 250, 252); */
.background-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.abstract-grid-pattern-container {
  position: fixed;
  z-index: 0;
  height: 100%;
  width: 100%;
  background-color: white;
}

.grid-pattern {
  margin-top: -100px;
  display: grid;
  justify-content: center;
  grid-template-columns: [start] 1fr [left-gutter] repeat(30, 50px) [left-gutter] 1fr [end];
  grid-template-rows: [top] 1fr [top-gutter] repeat(24, 50px) [bottom-gutter] 1fr [bottom];

  margin-left: -2%;
  margin-right: -2%;
  transform: rotate(12deg) skew(12deg);
}

.diagonal-shape {
  display: flex;
  box-sizing: border-box;
}

.boxes {
  display: flex;
  box-sizing: border-box;
}

.create-account-form-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 810px;
  font-family: 'Roboto', sans-serif;
  padding-top: 80px;
}

.reset-password-form-wrapper {
  padding-top: 130px;
}

.create-account-content {
  box-sizing: border-box;
  width: 470px;
  padding: 50px 50px 38px 50px;
  border-radius: 4px;
  z-index: 0;
  background-color: #fff;
  box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.12),
    0 3px 6px 0 rgba(0, 0, 0, 0.12);
}

.form-logo > img {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  width: 250px;
}

.form-header {
  font-size: 1.25em;
  font-weight: 400;
  padding-bottom: 40px;
  color: #505566;
  text-align: left;
}

.reset-password-header {
  font-size: 0.9em;
  padding-bottom: 25px;
  color: #484a53;
  text-align: left;
  line-height: 1.5rem;
}

.input-field {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  color: #616161;
}

.input-field > label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #3c4257;
}

.input-field > input {
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 1em;
  box-sizing: border-box;
  padding: 12px 15px;
}

.input-field > .password-section > label {
  font-weight: 500;
  color: #3c4257;
}

.password-section {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.forgot-password > a {
  font-weight: 500;
  font-size: 14px;
  color: rgb(0, 131, 218);
}

.signup-btn {
  background-color: rgb(0, 131, 218);
  border: none;
  border-radius: 4px;
  color: white;
  width: 100%;
  height: 50px;
  font-weight: 600;
  font-size: 1.05em;
  margin-top: 4px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: ease-in-out;
  transition: 0.5s;
}

.signup-btn:hover {
  background-color: rgb(0, 149, 218);
  border: none;
  color: white;
  width: 100%;
  height: 50px;
  font-weight: 600;
  font-size: 1.05em;
  margin-top: 4px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: ease-in-out;
  transition: 0.5s;
}

.input-field > label > span {
  font-size: 12px;
  font-weight: 300;
  color: #ff0000;
}

.link-to-login {
  padding-top: 30px;
  font-weight: 400;
  font-size: 14px;
  color: #3c4257;
  margin-bottom: 40px;
}

.link-to-login > a {
  font-weight: 500;
  font-size: 14px;
  color: rgb(0, 131, 218);
}

.link-to-login > a:hover {
  font-weight: 500;
  font-size: 14px;
  color: #3c4257;
}

.footer-auth-pages {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #787e91;
  padding: 30px 0px;
  z-index: 1;
}

/* Log in */

.input-field-checkbox {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
  font-size: 14px;
  box-sizing: border-box;
  padding: 12px 0px;
  color: rgb(97, 97, 97);
}

input[type='checkbox'] {
  background-color: black;
  margin: 5px;
  padding: 5px;
}

#error-message {
  color: rgb(255, 21, 21);
  margin-top: 5px;
  text-align: right;
  visibility: hidden;
  font-weight: 500;
  font-size: 0.875em;
}
